home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / bailer.swf / scripts / frame_64 / DoAction.as
Text File  |  2013-04-24  |  136b  |  9 lines

  1. chara_mc.onEnterFrame = function()
  2. {
  3.    this._alpha -= 10;
  4.    if(this._alpha <= 0)
  5.    {
  6.       delete this.onEnterFrame;
  7.    }
  8. };
  9.